home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / GRAPH_FO / (GRAPH / CGRAPHTE / CGRAPHAP.H < prev    next >
Text File  |  1991-02-15  |  718b  |  28 lines

  1. /******************************************************************************
  2.  CGraphApp.h
  3.  
  4.         Interface for the GraphApp Class
  5.  
  6.         Copyright ⌐ 1989 Symantec Corporation. All rights reserved.
  7.  
  8.  ******************************************************************************/
  9.  
  10. #define _H_CGraphApp
  11. /* includes */
  12. #include <CApplication.h>                /* Interface for its superclass        */
  13.  
  14. /* class definition */
  15. struct CGraphApp : CApplication {    /* Class Declaration                */
  16.     /** Instance Methods **/
  17.     void    IGraphApp(void);
  18.  
  19.     void    SetUpFileParameters(void);
  20.     void    SetUpMenus(void);
  21.  
  22.     void    Exit(void);
  23.  
  24.     void    DoCommand(long theCommand);
  25.     void    UpdateMenus(void);
  26.     void    CreateDocument(void);
  27.     void    OpenDocument(SFReply *macSFReply);
  28. };